c87db5f925443f799502feb10b4227dbe8dc21f6,doubleclick-openrtb/src/main/java/com/google/doubleclick/openrtb/DoubleClickOpenRtbMapper.java,DoubleClickOpenRtbMapper,mapDevice,#NetworkBid.BidRequest#,207

Before Change


        device.setIfa(BaseEncoding.base64().encode(
            dcMobile.getAdvertisingId().toByteArray()));
      } else if (dcMobile.hasEncryptedAdvertisingId()) {
        device.setIfa(BaseEncoding.base64().encode(
            dcMobile.getEncryptedAdvertisingId().toByteArray()));
      }
      if (dcMobile.hasHashedIdfa()) {
        device.setDpidmd5(BaseEncoding.base64().encode(

After Change


      if (dcMobile.hasAdvertisingId()) {
        device.setIfa(MapperUtil.toBase64(dcMobile.getAdvertisingId()));
      } else if (dcMobile.hasEncryptedAdvertisingId()) {
        device.setIfa(MapperUtil.toBase64(dcMobile.getEncryptedAdvertisingId()));
      }
      if (dcMobile.hasHashedIdfa()) {
        device.setDpidmd5(MapperUtil.toBase64(dcMobile.getHashedIdfa()));